home *** CD-ROM | disk | FTP | other *** search
/ Birds of My State or Province 4.5 / eField Guide Viewer.iso / pc / Windows / CR115.cab / web.config.9EEF3408_6D73_4CDA_9C48_00AC83DAE200 < prev    next >
Encoding:
Extensible Markup Language  |  2005-04-04  |  7.6 KB  |  181 lines

  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3.     
  4.   <system.web>
  5.  
  6.     <!--  DYNAMIC DEBUG COMPILATION
  7.           Set compilation debug="true" to enable ASPX debugging.  Otherwise, setting this value to
  8.           false will improve runtime performance of this application. 
  9.           Set compilation debug="true" to insert debugging symbols (.pdb information)
  10.           into the compiled page. Because this creates a larger file that executes
  11.           more slowly, you should set this value to true only when debugging and to
  12.           false at all other times. For more information, refer to the documentation about
  13.           debugging ASP .NET files.
  14.     -->
  15.     <compilation defaultLanguage="c#" debug="false">
  16.             
  17.         <assemblies>
  18.            <add assembly="CrystalDecisions.CrystalReports.Engine, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
  19.            <add assembly="CrystalDecisions.Shared, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
  20.            <add assembly="CrystalDecisions.ReportSource, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
  21.            <add assembly="CrystalDecisions.Web, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
  22.         </assemblies>
  23.     </compilation>
  24.  
  25.     <!--  CUSTOM ERROR MESSAGES
  26.           Set customError mode values to control the display of user-friendly 
  27.           error messages to users instead of error details (including a stack trace):
  28.  
  29.           "On" Always display custom (friendly) messages  
  30.           "Off" Always display detailed ASP.NET error information.
  31.           "RemoteOnly" Display custom (friendly) messages only to users not running 
  32.           on the local Web server. This setting is recommended for security purposes, so 
  33.           that you do not display application detail information to remote clients.
  34.     -->
  35.     <customErrors 
  36.     mode="RemoteOnly" 
  37.     /> 
  38.  
  39.     <!--  AUTHENTICATION 
  40.           This section sets the authentication policies of the application. Possible modes are "Windows", "Forms", 
  41.           "Passport" and "None"
  42.     -->
  43.     <authentication mode="Windows" /> 
  44.  
  45.     <!--  APPLICATION-LEVEL TRACE LOGGING
  46.           Application-level tracing enables trace log output for every page within an application. 
  47.           Set trace enabled="true" to enable application trace logging.  If pageOutput="true", the
  48.           trace information will be displayed at the bottom of each page.  Otherwise, you can view the 
  49.           application trace log by browsing the "trace.axd" page from your web application
  50.           root. 
  51.     -->
  52.     <trace
  53.         enabled="false"
  54.         requestLimit="10"
  55.         pageOutput="false"
  56.         traceMode="SortByTime"
  57.     localOnly="true"
  58.     />
  59.  
  60.     <!--  SESSION STATE SETTINGS
  61.           By default ASP .NET uses cookies to identify which requests belong to a particular session. 
  62.           If cookies are not available, a session can be tracked by adding a session identifier to the URL. 
  63.           To disable cookies, set sessionState cookieless="true".
  64.     -->
  65.     <sessionState 
  66.             mode="InProc"
  67.             stateConnectionString="tcpip=127.0.0.1:42424"
  68.             sqlConnectionString="data source=127.0.0.1;user id=sa;password="
  69.             cookieless="false" 
  70.             timeout="20" 
  71.     />
  72.  
  73.     <!--  GLOBALIZATION
  74.           This section sets the globalization settings of the application. 
  75.     -->
  76.     <globalization 
  77.             requestEncoding="utf-8" 
  78.             responseEncoding="utf-8" 
  79.    />
  80.    
  81.    <!-- request length is 20MB -->
  82.    <httpRuntime maxRequestLength="20000"/>
  83.  
  84.     <httpHandlers>
  85.         <add verb="*" path="*.csp" type="BusinessObjects.Enterprise.WebComponentAdapter.WCAHandler,BusinessObjects.Enterprise.WCA, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
  86.         <add verb="*" path="*.cwr" type="BusinessObjects.Enterprise.WebComponentAdapter.WCAHandler,BusinessObjects.Enterprise.WCA, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
  87.     </httpHandlers>
  88.  
  89.     <trust level="Full" originUrl="" />
  90.     <pages enableSessionState="true" />
  91.  
  92.     <httpModules>
  93.         <clear />
  94.         <add name="Session" type="System.Web.SessionState.SessionStateModule"/>
  95.     </httpModules>
  96.  
  97.  </system.web>
  98.  
  99. <appSettings>
  100.     <!-- This is a virtual path to crystalreportviewers directory, default to /cyrstalreportviewers115 -->
  101.     <add key="path.dhtmlViewer" value="/crystalreportviewers115"/>
  102.  
  103.     <!-- This is the default page to handle viewing requests. -->
  104.     <add key="viewer.defaultPage" value="viewrpt.aspx"/>
  105.  
  106.     <add key="defaultPage" value="enterprise115/desktoplaunch/en/default.htm"/>
  107.  
  108.     <!-- The friendly name of current WCA, default %HOST%.wcs -->
  109.     <add key="wca.Name" value="%DOTNET_WCA_NAME%"/>    
  110.  
  111.     <!-- This is the name of the CMS that you would like to connect to, default %HOST%. WCS_NAME_SERVER-->
  112.     <add key="connection.cms" value="%CMS_NAME_AND_PORT%"/>
  113.  
  114.     <!-- WCS_CRI_TIMEOUT -->
  115.     <add key="connection.criTimeout" value=""/>
  116.  
  117.     <!-- SOCKS URI is the URI style string representation of SOCKS server configuration. The SOCKS
  118.     URI follows FTP and Telnet SOCKS URI convertion.
  119.     socks://version;[username:password@]hostname:port[;version;[username:password@]hostname:port]... 
  120.     example: socks://4;sockssvr1:1080;5;sockssvr2:1080;5;guest:password@sockssvr3:1080
  121.     Note: This SOCKS set will override any registry setting for the given server name -->
  122.     <add key="connection.socksUri" value=""/>
  123.     
  124.     <!-- CMC's custom URL path -->
  125.     <add key = "CMC_CUSTOMURL_PATH" value="webadmin/"/>
  126.     
  127.     <!-- WCA viewrpt plugin configuration -->
  128.     
  129.     <!-- Full path to location of temporary image files -->
  130.     <add key="crimage.tempImageDir" value=""/>
  131.     
  132.     <!-- "true" or "false" value governing whether drill down is permitted. -->
  133.     <add key="viewrpt.drillDown" value=""/>
  134.     
  135.     <!-- "true" or "false" value determining whether a group tree will be generated. -->
  136.     <add key="viewrpt.groupTreeGenerate" value=""/>
  137.  
  138.     <!-- "true" or "false" value determining whether a group tree will be shown by default if one is generated -->    
  139.     <add key="viewrpt.groupTreeShow" value=""/>
  140.     
  141.     <!-- "true" or "false" value determining whether a refresh button will be shown. -->
  142.     <add key="viewrpt.refresh" value=""/>
  143.     
  144.     <!-- "true" or "false" value determining whether a search button will be shown. -->
  145.     <add key="viewrpt.search" value=""/>
  146.     
  147.     <!-- "true" or "false" value determining whether an export button will be shown. -->
  148.     <add key="viewrpt.export" value=""/>
  149.     
  150.     <!-- "true" or "false" value determining whether a zoom button will be shown. -->
  151.     <add key="viewrpt.zoom" value=""/>
  152.     
  153.     <!-- "true" or "false" value determining whether a print button will be shwon. -->
  154.     <add key="viewrpt.print" value=""/>
  155.     
  156.     <!-- "true" or "false" value determining whether a product logo will be shown. -->
  157.     <add key="viewrpt.logo" value=""/>
  158.     
  159.     <!-- "true" or "false" value determining whether a tool bar will be shown. -->
  160.     <add key ="viewrpt.toolbar" value=""/>
  161.     
  162.     <!-- WCA viewrpt plugin configuration End -->
  163.     
  164.     <!-- logging for WCA itself, FileName of the logfile including full real pth to file, excluding extension.
  165.     Defaults to path will be %CRYSTALDIR%/logging/dotnet_wca_%DATE% -->
  166.     <add key="wcalog" value=""/>
  167.  
  168.     <!-- for enable slog, value will be used to inintialize slog -->
  169.     <!-- <add key="log" value=""/> -->    
  170. </appSettings>
  171.  
  172. <system.diagnostics>
  173.     <trace autoflush="true" indentsize="2" />
  174.     <switches>
  175.         <!-- turn on wca logging, by default only log error and warning -->
  176.         <add name="wcaTraceSwitch" value="2" />
  177.     </switches>
  178. </system.diagnostics>
  179.   
  180. </configuration>
  181.